* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: essonnes-display,serif;
  font-weight: 400;
  font-style: normal;
}
html
{
  height: 100%;
  overflow:hidden
}
body
{
  margin: 0;
  padding: 0;
}
.container {
  display: flex;
  align-items: left;
  justify-content: left;
}
.navbar {
  overflow: hidden;
  background-color: #000;
  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 999;
  align-items: baseline;
  vertical-align: top;
}

.navbar a {
  float: left;
  display: flex;
  color: #f2f2f2;
  text-align: center;
  position: top;
  padding: 2vh;
  text-decoration: none;
  justify-content: center;
}

.navbar a:hover {
  background: #ddd;
  color: black;

}
.section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 5px #000;
}
.wrapper
{
  color: rgb(233, 215, 199);
  margin: 0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
.parallax
{
  box-sizing: border-box;
  min-height: 95vh;
  padding: 30vw 0 5vw;
  position: relative;
  transform-style: inherit;
  width: 100vw;
  font-family: "B612";

}
.parallax h1
{
  margin-top: -100px;
  background: #000000;
  width: 100vw;
}
.parallax, .parallax:before
{
  background: 40% 60% / cover;
}
.parallax::before
{
  background-attachment: fixed;
  bottom: 0;
  content: "";
  left:0;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  background-image: url(../img/TreeStump.jpg);
  background-size: cover;
  z-index: -1;  
  min-height: 100vh;
}
.parallax::after
{
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.parallax * 
{
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0;
  padding: 1em 0;
}

.bg2::after 
{
  background-image: url('../img/ShadowedOutside.jpg');
}
.static 
{
  background: #000;
  font-size: 1.5em;
  font-weight: lighter;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 0 5px #000;
  text-align: left;
  height: 50vh;
  font-family: 'Poppins', sans-serif;
}
@media only screen and (max-width:749px) 
{
  * 
  {
    font-size: small;
    background-attachment: inherit;
  }

}
